home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / Fight / antkendo.swf / scripts / frame_4 / PlaceObject2_123_17 / CLIPACTIONRECORD onClipEvent(mouseMove).as < prev   
Text File  |  2006-06-09  |  384b  |  16 lines

  1. onClipEvent(mouseMove){
  2.    if(_root._currentframe == 52)
  3.    {
  4.       if(_xmouse > _root.hero._X - 100 && _root.hero._currentframe < 10)
  5.       {
  6.          direction = 8;
  7.          _root.hero.gotoAndPlay(10);
  8.       }
  9.       else if(_xmouse < _root.hero._x && _root.hero._currentframe < 10)
  10.       {
  11.          direction = -8;
  12.          _root.hero.gotoAndPlay(10);
  13.       }
  14.    }
  15. }
  16.